home *** CD-ROM | disk | FTP | other *** search
-
- -- Integers
-
- expanded class interface INTEGER
- exported features
- -- All features from COMPARABLE and NUMERIC
- infix "//" (other:INTEGER):INTEGER
- -- Integer division of current integer by 'other'
- require
- no_null_divisor : other /= 0
- infix "\" (other:INTEGER):INTEGER
- -- Remainder of integer division of current integer by 'other'
- require
- no_null_divisor : other /= 0
- end interface -- class 'INTEGER'
-